@charset "utf-8";
.header {
  height: 100px;
  line-height: 100px;
}

.header .logo {
  display: block;
  width: 32%;
  height: 100%;
  float: left;
}

.top_lang {
  display: inline-block;
  width: 45px;
}

.nav {
  float: left;
  width: 100%;
  height: auto;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.nav_bar {
  border-bottom: 1px solid #dddddd;
  margin-bottom: 20px;
  margin-top: 20px;
  /*background: #0476CC;*/
}

.nav li {
  float: left;
  width: 20%;
  height: 100%;
  padding: 0 20px;
  text-align: center;
  position: relative;
  -webkit-box-flex: 1; /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1; /* OLD - Firefox 19- */
  -webkit-flex: 1; /* Chrome */
  -ms-flex: 1; /* IE 10 */
  flex: 1; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.nav a {
  display: block;
  height: 40px;
  font-family: font-max;
  font-size: 18px;
  line-height: 40px;
  position: relative;
}

/*.nav > li > a {*/
/*color: #ffffff;*/
/*}*/

.nav > li:after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background: transparent;
}

.nav > li.active:after, .nav > li:hover:after {
  background: #0476CC;
}

.nav > li.active > a, .nav > li:hover > a {
  color: #0476CC;
}

/*.nav>li.active,.nav>li:hover{*/
/*background: #0066b3;*/
/*}*/

.nav ol {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 41px;
  z-index: 9999;
  display: none;
  /*padding:10px 0;*/
  /*background: #7a8b99;*/
  background: rgba(245, 245, 245, .8);
}

.nav li:hover ol {
  display: block;
}

.nav ol li {
  float: none;
  width: 100%;
  padding: 0;
  /*margin-bottom:10px;*/
}

.nav ol a {
  height: auto;
  font-size: 14px;
  line-height: 40px;
  /*color: #dfebf2;*/
}

.nav ol li:hover {
  background: rgba(245, 245, 245, .5);
}

/*.nav ol li:hover a{*/
/*color: #ffffff;*/
/*}*/

.tools {
  float: right;
  width: 60%;
  height: 100%;
  padding: 30px 0;
  line-height: 40px;
}

.more_list {
  position: absolute;
  right: 40px;
  top: 7px;
  transition: all .3s ease-in-out;
  z-index: 999;
  height: 26px;
  line-height: 26px;
}

.more-item {
  display: inline-block;
  width: 130px;
  height: 26px;
  line-height: 26px;
  cursor: pointer;
  background: #ffffff url("../img/down_jiao.gif") 110px 7px no-repeat;
  position: relative;
}

.more_list.trans {
  right: 220px;
}

.more_list * {
  line-height: 26px;
  color: #333333;
}

.more_title {
  padding-left: 10px;
  border: 1px solid #d6d6d6;
}

.more_list ul {
  display:none;
  width: 100%;
  position: absolute;
  left: 0;
  top: 28px;
  background: #ffffff;
  overflow: hidden;
  transition: all .3s ease-in-out;
}

.more_list .more-item:hover ul {
  display:block;
}

.more_list li {
  height: 28px;
  border: 1px solid #d6d6d6;
  border-top: none;
  padding-left: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.search {
  float: left;
  width: calc(100% - 90px);
  height: 40px;
  position: relative;
}

/*.search{*/
/*float: right;*/
/*width: 185px;*/
/*height: 40px;*/
/*position: relative;*/
/*}*/
.search:after {
  content: '';
  /*display: none;*/
  width: 1px;
  height: 50%;
  background: #999;
  position: absolute;
  right: -10px;
  top: 25%;
}

.search_box {
  display: none;
  width: 200px;
  position: absolute;
  right: 0;
  top: 0;
}

.search_box input {
  width: 100%;
  height: 26px;
  border: 1px solid #999;
  padding: 0 5px 0 25px;
}

.search_btn, .search_icon, .search_close {
  width: 30px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
  background: transparent;
  border: none;
}

.search_icon {
  right: auto;
  left: 0;
  cursor: default;
}

.phone_nav {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
}

.nav_clock {
  width: 100%;
  height: 20px;
}

.nav_clock i {
  position: absolute;
  right: 20px;
  top: 10px;
}

.phone_nav_list {
  width: 100%;
  position: absolute;
  top: 30px;
  left: 0;
  background: #fff;
  z-index: 9999;
  font-size: 12px;
  -webkit-box-shadow: 2px 2px 10px #aaaaaa;
  -moz-box-shadow: 2px 2px 10px #aaaaaa;
  box-shadow: 2px 2px 10px #aaaaaa;
  padding: 5px 0;
  line-height: 20px;
}

.phone_nav_list > li {
  padding: 0 20px;
}

.phone_nav_list ol {
  margin-left: 10px;
}

.phone_nav_list a {
  display: block;
  width: 100%;
}

@media (max-width: 767px) {
    .header .tools .more_list {
        position: absolute;
        left: -100%;
        top: 37px;
        transition: all .3s ease-in-out;
        z-index: 999;
        height: 26px;
        line-height: 26px;
        width: 320px;
    }
    .header .tools .more-item {
        display: inline-block;
        width: 100px;
        height: 26px;
        line-height: 26px;
        cursor: pointer;
        background: #ffffff url(../img/down_jiao.gif) 80px 7px no-repeat;
        position: relative;
    }
    .header .tools .more_title {
        padding-left: 5px;
        border: 1px solid #d6d6d6;
    }
}